home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Entertainment / MacMud / Mud 4.0 / sent.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-30  |  343 b   |  14 lines  |  [TEXT/tefi]

  1. struct sentence {
  2.     char *verb;
  3.     struct object *ob;
  4.     char *function;
  5.     struct sentence *next;
  6.     unsigned short short_verb;    /* Only leading characters count */
  7.     unsigned char no_space;
  8. };
  9.  
  10. struct sentence *alloc_sentence();
  11.  
  12. void remove_sent PROT((struct object *, struct object *)),
  13.     free_sentence PROT((struct sentence *));
  14.